home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / ccidx_sh.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  6KB  |  181 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: ccidx_sh.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/16/1997 
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. General purpose search functions used with the CCIndex class.
  32. */
  33. // ----------------------------------------------------------- //
  34. #include "ccidx_sh.h"
  35. #include "btwalker.h"
  36.  
  37. // Global data structures used to organize and store btree nodes
  38. DLList<InMemCopy> CCIndex_SH_DLList;            // Doubly Linked
  39. DLList<InMemCopy> *dllist = &CCIndex_SH_DLList; // Doubly Linked
  40. DNode<InMemCopy> *dllistptr = 0;              // DLList node pointer
  41.  
  42. // Variable used to count the number of object found during a search
  43. int ObjectsFound = 0;
  44.  
  45. void BtreeSearch(Btree *btx, int item, CCIndex &ccindex,
  46.          UString &str, int find_all) 
  47. {
  48.   CachePointer nxt(*btx->GetCache());
  49.   BtreeWalkerb tw(btx, btINORDER);
  50.   int i, j;
  51.   nxt = btx->GetRoot();
  52.   DLList<EntryKey> list; // Short temporary list used to sort keys 
  53.   DNode<EntryKey> *ptr;  
  54.   
  55.   while((__LWORD__)nxt != 0) {
  56.     nxt = tw.Next();
  57.     if((__LWORD__)nxt) {
  58.       if(nxt->left != 0) {
  59.     for(i = 0; i < nxt->cnt; i++) {
  60.       list.StoreNode(nxt->entry[i]);
  61.     }
  62.     continue; 
  63.       }
  64.  
  65.       if(!list.IsEmpty()) {
  66.     ptr = list.GetFront();
  67.     for(i = 0, j = 0; i < nxt->cnt; i++) {
  68.       while(!list.IsHeader(ptr)) {
  69.         if(FullCompare(ptr->Data, nxt->entry[i].key) < 0) {
  70.           BtreeKeySearch(ptr->Data, item, ccindex, str, find_all); 
  71.           list.Delete(ptr);
  72.         }
  73.         ptr = ptr->GetNext(); 
  74.       }
  75.     }
  76.     for(; j < nxt->cnt; j++) {
  77.       BtreeKeySearch(nxt->entry[j], item, ccindex, str, find_all);
  78.     }
  79.       }
  80.       else {
  81.     for(i = 0; i < nxt->cnt; i++) {
  82.       BtreeKeySearch(nxt->entry[i], item, ccindex, str, find_all); 
  83.     }
  84.       }
  85.     }
  86.   }
  87. }
  88.  
  89. void BtreeKeySearch(EntryKey &e, int item, CCIndex &ccindex, UString &str,
  90.             int find_all)
  91. // Visit function used to search each node for a specified item
  92. {
  93.   int offset;
  94.   UString buf;
  95.     
  96.   if(item == CARD_NAME) {
  97.     buf = e.key;
  98.     if(find_all == 0) { // Search for single match
  99.       int result = CaseICmp(buf, str);
  100.       if(result == 0) { 
  101.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  102.     dllist->StoreNode(inmemcopy);
  103.     ObjectsFound++;
  104.       }
  105.     }
  106.     else { // Search for all matches
  107.       offset = buf.Find(str.c_str(), 0);
  108.       if(offset != UString::NoMatch) {
  109.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  110.     dllist->StoreNode(inmemcopy);
  111.     ObjectsFound++;
  112.       }
  113.     }
  114.   }
  115.   else {
  116.     ccindex.ReadObject(e.object_address);
  117.     switch(item) {
  118.       case COMPANY_NAME:
  119.     buf = ccindex.GetCompanyName();
  120.     break;
  121.       case DEPARTMENT_NAME:
  122.     buf = ccindex.GetDepartmentName();
  123.     break;
  124.       case PHONE_NUMBER:
  125.     buf = ccindex.GetPhoneNumber();
  126.     break;
  127.       case FAX_NUMBER:
  128.     buf = ccindex.GetFaxNumber();
  129.     break;
  130.       case CELL_NUMBER:
  131.     buf = ccindex.GetCellNumber();
  132.     break;
  133.       case BEEPER_NUMBER:
  134.     buf = ccindex.GetBeeperNumber();
  135.     break;
  136.       case EMAIL_ADDRESS:
  137.     buf = ccindex.GetEmailAddress();
  138.     break;
  139.       case STREET_ADDRESS:
  140.     buf = ccindex.GetStreetAddress();
  141.     break;
  142.       case INTERNET_URLS:
  143.     buf = ccindex.GetInternetURLS();
  144.     break;
  145.       case COMMENTS_BLOCK:
  146.     buf = ccindex.GetCommentsBlock();
  147.     break;
  148.       default:
  149.     return;
  150.     }
  151.     if(find_all == 0) { // Search for single match
  152.       int result = CaseICmp(buf, str);
  153.       if(result == 0) { 
  154.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  155.     dllist->StoreNode(inmemcopy);
  156.     ObjectsFound++;
  157.       }
  158.     }
  159.     else { // Search for all matches
  160.       offset = buf.Find(str.c_str(), 0);
  161.       if(offset != UString::NoMatch) {
  162.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  163.     dllist->StoreNode(inmemcopy);
  164.     ObjectsFound++;
  165.       }
  166.     }
  167.   }
  168. }
  169.  
  170. void LoadKeys(EntryKey &e)
  171. // Visit function used to load the btree keys into memory
  172. {
  173.   InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  174.   dllist->StoreNode(inmemcopy);
  175. }
  176. // ----------------------------------------------------------- //
  177. // ------------------------------- //
  178. // --------- End of File --------- //
  179. // ------------------------------- //
  180.  
  181.